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

furtzown

Members
  • Posts

    167
  • Joined

  • Last visited

    Never

Everything posted by furtzown

  1. @Urahara: > @Soul: > > > 1\. You make the spell. Then you make an item /itemeditor and then change the type to Spell and change the number to that spell. > > 2\. Sub HP = Subtract Hitpoints. > > But if I choose a spell with Sub HP, does the spell damage the NPC or player or wtf? lol think about it
  2. @kavic: > @furtzown: > > > idk if any1 already answered u, but anyway ill post > > > > you host your server, and copy a new client. > > in this client folder… open client.exe, go in ip config > > on your server windows, your ip is writed on the top (where the name should be) > > give the client to your friend... > > once they are playing, go on your server window, in player section > > then highlight his name and do *give acess*, put it 5 > > then tell him to press f1 in game... he will be able to do everything u do or almost > > Thanks very much and I did that I changed the ip and gave to my friend with all the files in the client server but still couldent connect to the server. it says that its offline :huh: make sure port is 4000… and that your server window is open :P work for me and my friend
  3. furtzown

    Spell

    i dont see the spell animation when i cast a spell =/
  4. furtzown

    EE vs ES

    any difference in the game? GFX or anything?
  5. idk if any1 already answered u, but anyway ill post you host your server, and copy a new client. in this client folder… open client.exe, go in ip config on your server windows, your ip is writed on the top (where the name should be) give the client to your friend... once they are playing, go on your server window, in player section then highlight his name and do *give acess*, put it 5 then tell him to press f1 in game... he will be able to do everything u do or almost
  6. furtzown

    EE vs ES

    what is the difference between those? argument pros and cons please ^^
  7. furtzown

    Adding script

    @jncoblack15: > just keep checking your page, someones bound to reply to you. Im still learning, so im of no help. i might try :P
  8. furtzown

    Ctrl + f

    @Antho3000: > /Party (character name) new question posted :P
  9. furtzown

    Ctrl + f

    wtf my ctrl + f to find some script in main.txt is fucked i write OnAttack and it find nothing… so after i decide to find it my self, the *OnAttack* is in front of my face, i copy paste in the ctrl+f and it say couldn't find?!?! wtf -_- after i try with TextSay, there are like 10 of them in the main.txt i found easily 5 then scroll up and restart and it say couldn't find again... wtf is this... im trying to work on my script but it alway fuck up with the ctrl+f
  10. furtzown

    Adding script

    no1 can help please?
  11. furtzown

    Adding script

    http://www.touchofdeathforums.com/smf/index.php/topic,2429.html marriage…how does it work exactly? I add those script in main.txt at the end...? and after http://www.touchofdeathforums.com/smf/index.php/topic,10816.0.html mount... add script under "Select Case LCase(Trim(TextSay))" but it doesn't exist... http://www.touchofdeathforums.com/smf/index.php/topic,1437.html waypoint...Create a new scripted tile case in the correct spot. what is that supose to mean =/ any help is appreciated :)
  12. furtzown

    Adding spirite

    how im supose to add it bellow the current spirite in /client/GFX/spirites.bmg thanks
  13. im making my server to play with my friend, but when im not there I cant host the server. so I wonder if they could host my server? i got some other nowhere question too… -how to add the spirite/tiles in the game? -when im too weak and attack stonger mobs it do -1 (or -2, etc) how can i change the script so it at least do 1 dmg?
  14. furtzown

    EE question

    @Tylian!: > Souls OnAttack sub should fix your 0 damage problem. > You didn't add it correctly to your Main.txt actually i put it correctly… (like the script above) and about the resource (spirite) how do i add them in my game?
  15. furtzown

    EE question

    your script don't work, still doing -1 tiles.txt ``` [Names] Tile0=0 Tile1=1 Tile2=2 Tile3=3 Tile4=4 Tile5=5 Tile6=6 Tile7=7 Tile8=8 Tile9=9 Tile10=10 Tile11=11 Tile12=12 Tile13=13 Tile14=14 Tile15=15 Tile16=16 Tile17=17 Tile18=18 Tile19=19 Tile20=20 Tile21=21 Tile22=22 Tile23=23 ```to 100 the color of lobby in game.. ![](http://img168.imageshack.us/img168/8119/mec.png)
  16. furtzown

    EE question

    @Soul: > /mapeditor. This is what tiles are for. The tiles you add can be used with the map editor. > > Not sure if this is what you meant. ic, but what is the Tiles.txt? and i still need answer with the 3 other question please ^^
  17. furtzown

    EE question

    what are tile for? I made a class that is speedy but weak. but there a lil problem on some mobs because he cant damage it, so is there a way that instead of doing 0 dmg, it could do 1? how to change the color in the left lobby in-game? any downloadable tilesets and spirite to add in game?
  18. furtzown

    Stats question

    in the bloc notes of Stats there is [HP] health point [MP] mana point [SP] ? what is SP and i want to know too, AddPerLevel= AddPerStr AddPerDef= AddPerMagi= AddPerSpeed= stat only do that?
  19. furtzown

    Death penality

    cmon anyone help me please
  20. furtzown

    Death penality

    on my game, when I die I drop all my equiped armor and weapon… how can I change that so I loose nothing except exp? I already have this script on Main.txt and it still don't work! ``` ' Executes on death, dropping all of the players items. Sub DropItems(Index) ' Remove this to enable. Exit Sub If GetPlayerWeaponSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerWeaponSlot(Index), 0) End If If GetPlayerArmorSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerArmorSlot(Index), 0) End If If GetPlayerHelmetSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerHelmetSlot(Index), 0) End If If GetPlayerShieldSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerShieldSlot(Index), 0) End If If GetPlayerLegsSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerLegsSlot(Index), 0) End If If GetPlayerRingSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerRingSlot(Index), 0) End If If GetPlayerNecklaceSlot(Index) > 0 Then Call PlayerMapDropItem(Index, GetPlayerNecklaceSlot(Index), 0) End If End Sub ``` and btw, i got another question too… i made a class that is speedy but weak. but there a lil problem on some mobs because he cant damage it, so is there a way that instead of doing 0 dmg, it could do 1?
  21. furtzown

    EE question

    @Soul: > Quote the player message you get when the spell won't work. Word for word. what that mean?
  22. furtzown

    EE question

    it was already with that script… and the spell still dont work even when i target
  23. furtzown

    EE question

    @Aksel: > Cannot cast spell appears when you do not have a target. Target a player or a NPC by right-clicking. > > By default you do not loose your equipment on death. You must have changed that in Main.txt. Go to Main.txt and change Sub DropItems to: > > ``` > ' Executes on death, dropping all of the players items. > Sub DropItems(Index) > ' Remove this to enable. > Exit Sub > > If GetPlayerWeaponSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerWeaponSlot(Index), 0) > End If > > If GetPlayerArmorSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerArmorSlot(Index), 0) > End If > > If GetPlayerHelmetSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerHelmetSlot(Index), 0) > End If > > If GetPlayerShieldSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerShieldSlot(Index), 0) > End If > > If GetPlayerLegsSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerLegsSlot(Index), 0) > End If > > If GetPlayerRingSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerRingSlot(Index), 0) > End If > > If GetPlayerNecklaceSlot(Index) > 0 Then > Call PlayerMapDropItem(Index, GetPlayerNecklaceSlot(Index), 0) > End If > End Sub > > ``` im still loosing my equip
  24. furtzown

    EE question

    I cant cast spell… I make elements, the spell, the item for spell everything right but when I try to cast the spell nothing happen and it say .. cannot cast the spell! I got another question too, when we die, we loose all our equipped item. how can I change that? thanks
×
×
  • Create New...