Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Sigait

Members
  • Posts

    233
  • Joined

  • Last visited

    Never

Everything posted by Sigait

  1. I try to be everywhere, 9/10 Sigait.
  2. Torrents are great,You can download even sleeping :P
  3. Wow if i add all my ratings they go to 8/10,I'll take that :P. Same reason 1/10 Sigait.
  4. @HawkStorm95: > nice script! i could use this. Well if you know some scripting you can do this by yourself its pretty simple but very effective. Sigait.
  5. Happy birthday^^Wish you good luck and alot of success even though i don't know you at all :) Sigait.
  6. @The: > dude i been here 2 almost 3 years now and i just learned how to script this year. im excelling now and its actually pretty simple. right now im working on source stuff. i guess my point is just keep working hard at it. and if you want to make good scripts you have to commit time to the cause. something that may help is to take a look at the commands thread, i believe its in announcements. Actually,thats what i said!!
  7. @The: > oooo, my bad. good job then :cheesy: lol,yeah its a nice script!! Sigait.
  8. @(~~): > It needs more texture and detail….... Yeah,thats actually right..!!
  9. @Pieman: > I don't know you. 1/10 Anyways nice to meet you. nice to meet you too 1/10 ^^
  10. @Corza: > i can script (very basic) but its the simple stuff like my problem (PlayerGuild = GetPlayerGuild) and forgetting the color of the message and index that i forget :embarrassed: > > - Corza Download the Script editor with the commands and script using them It'll surely help you alot.
  11. @Corza: > Really… > > Well ive tried making my own scripts. > i have a huge folder full of tutorials and commands > and some of the scripts i wrote out but yet again > i dont know what to do. > > - Corza Relax man,its no the end of the world if you can't get scripting,You'll surely learn maybe not now though I'm sure you will :). Sigait.
  12. @Corza: > I am trying really hard with everything but….. > > it just doesn't measure up :sad: > > - Corza Well try reading some tutorials or checking out some already made scripts.Scripts could help,that's the way I've learned in kinda 1 week(I'm too lazy for tutorials :P)
  13. @\\Sean//: > Ofcorse its nicly done I'm a good scripter. Just lack ideas :P I've never doubt it ;)
  14. Its nice knowing that players keep learning how to script^^ Sigait.
  15. @Kreator: > I'm just not going to post, I can't think of anything to say that won't get me demodded. > > Gah, it's killing me. > > Please please read soem tutorials, and check out some references. Check out mine, check out those of well known SNES games, etc. They are not that bad though…
  16. @The: > i don't know you so 6/10 If you don't know a person you shouldnt rate him/her at all!! 6/10 Sigait
  17. Sigait

    Quests script

    @nava822: > Ok thx ill wait….THX! :cheesy: Your welcome,i like helping others.
  18. Well there is a script that does this action but its not my idea,I just modified it a little so it has now full functions like taking 1 item if there are more than one^^. ``` Sub TakeItem(index, item, message) SLOT = 1 Do While SLOT < 24 If GetPlayerInvItemNum(index, SLOT) = X Then If GetPlayerInvItemValue(Index, SLOT) = Y Then Call SetPlayerInvItemNum(Index, SLOT, 0) Call SetPlayerInvItemValue(index, SLOT, 0) Call SendInventoryUpdate(index, SLOT) SLOT = 24 Exit Sub End If End If If GetPlayerInvItemNum(index, SLOT) = X Then If GetPlayerInvItemValue(Index, SLOT) > Y Then Call SetPlayerInvItemValue(index, SLOT, GetPlayerInvItemValue(Index, SLOT) - 1) Call SendInventoryUpdate(index, SLOT) SLOT = 24 Exit Sub End If End If SLOT = SLOT+1 Loop End Sub ``` Paste this code in the bottom of your main and then call it like: Call TakeItem(index, item, message) Change the X with the item number and the Y for the items value and you're done ;).
  19. @Corza: > Thanks :cheesy: > > - Corza If its for me your welcome
  20. Sigait

    Quests script

    I may help you by Implenting it but not now coz im kinda tired!
  21. @Alster: > I think it belongs in questions. It's a question asking if this works. Yeah it is a question but you have even explained how to implent it
  22. umm it works fine without it too just add this piece of code: Call GivePlayerItem(index, Item, ItemValue, ItemDuration) like Call GivePlayerItem(index, 1, 2, 0)^^
  23. @dg1423: > try this: > > ``` > Player = GetVar("players.ini", "players", "" & Response) > If Player = "" OR Player = "0" Then > Call PlayerMsg(index, "That player doesn't exist.", 15) > Else > Call PutVar("bounty.ini", "hasbounty", "" & Response, "1") > Call playerquerybox(index, "How much do you want the bounty to be?", 1) > End if > > ``` Nice ;)
×
×
  • Create New...