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

BeNjO

Members
  • Posts

    1161
  • Joined

  • Last visited

Everything posted by BeNjO

  1. i always think about bosses, i love to solo bosses, or two man them meaning i can chug potions to my hearts content, have nothing but 80% hp pots 20% mana pots in all inv space and just spam pots. If food is in the game i carry a stack for before and after boss fight healing. Never been able to rely on a healer.. unless he/she is been paid via items…
  2. im on board with the Clear guys, im not special, didnt go to MENSA or anything, looked twice, you put 2 and 2 together, white eoy? no you just persume its a B even if you cant understand it, even though i saw white boy.. but yeah im lying
  3. a few questions: what engine is used, if any? is the GUI functioning? The video does not show the cool new GUI. If any Coding positions come up let me know, i used to work with SilverDale just before Justin bought it, i did help DFA out but after justin and DFA departed i no longer stood with the project. I only say coding position as i can no pixel or compose.
  4. BeNjO

    Desert town

    CS:S, looks more like DE_Dust than Dust2
  5. anyone got any tips? never owned a CoD before, used to play them at mates houses, and having experience with FPS's i used to generally win. Used to play CS:S with a team at Multiplay Insomnia Gaming Events, I39-I45 but lost interest after second child was born. Once you "master" one FPs you can generally play any FPS game, console or not
  6. DrawShadow no space no S on Shadow**S**
  7. Edited: [background=rgb(247, 247, 247)]funny story, i bought the 500gb ps3 slim bundle including (Link: [/background]http://www.very.co.uk/playstation-3-500gb-console-with-gt5-academy-uncharted-goty-call-of-duty-black-ops-2-medal-of-honor-warfighter-madcatz-controller-and-ex03-gioteck-wireless-headset/1182247149.prd?browseToken=%2fb%2f10301%2fq%2fplaystation) [background=rgb(247, 247, 247)]madcat controller[/background] [background=rgb(247, 247, 247)]Bluetooth headset [/background] [background=rgb(247, 247, 247)]Black ops 2[/background] [background=rgb(247, 247, 247)]Uncharted 3 drakes deception[/background] [background=rgb(247, 247, 247)]MoH Warfighter[/background] [background=rgb(247, 247, 247)]GT 5[/background] [background=rgb(247, 247, 247)]I set everything up and bam.. my internet goes off.. took a week to come back online (after ringing up 7 times and BT digging 2 holes down my street to fix my line) I finally get to play it, level to 22 in a few hours. [/background] [background=rgb(247, 247, 247)]Ps3 name: xBeNjO[/background]
  8. try this: ``` Public Sub DrawShadow(ByVal Sprite As Long, ByVal X As Long, ByVal Y As Long) If hasShadow(Sprite) Then RenderTexture Tex_Shadow, ConvertMapX(X), ConvertMapY(Y), 0, 0, 32, 32, 32, 32 End Sub ``` else ``` DrawShadow ``` search for it and change the x and y properties, i had to do the same to get my 32x64 sprites working
  9. funny story, i bought the 500gb ps3 slim, with madcat controller, 5 games (BO 2 incl) and a bluetooth headset got it setup and bam.. my internet goes off.. took a week to come back online (after ringing up 7 times and Bt digging 2 holes to fix my line) i ge to play it, level to 22 in a few hours. note: never ever use a bluetooth headset, turtle beach FTW Ps3 name: xBeNjO
  10. file, make "namehere".exe…. that is to compile.
  11. BeNjO

    Intro flash video EO2.0

    8 month bump, well done ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons//sad.png)
  12. lol i think its New Teen Mom or something, during the day i have 0 control over the TV, during the night i get full control (after the soaps)… women eh >.>
  13. ![](http://i45.tinypic.com/im3zx2.jpg)
  14. or simply check if 6 seconds goes by faster than 5, if so player is using a speed hack..
  15. old gui > new, ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons//sad.png)
  16. ![](http://i49.tinypic.com/2j4ulgw.jpg)
  17. i hate you, i love games like this, just hate it based on love/bunnies ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons//sad.png) runs perfectly no lag, just need hover over tips on items/menu buttons so we know what they do!
  18. so this is one of those "make my game for me" thread? i actually wanted to help but since you want a complete team and without showing us/telling us what you are/will be doing in the game no one will be intrested
  19. I have just used a backup for now until this is more stable, same with the auction house problem im having. Thanks
  20. im sure you just spoke Chinese, i would not know where to start with what you said, Filename = map100.dat Filename2 = map0.dat and neither exist i think i found the place of error, in the playermove sub ``` If .Type = TILE_TYPE_INSTANCE Then ' Check if already on instanced map If GetPlayerMap(Index) >= 100 Then Moved = NO Else ' New Instance For i = 1 To MAX_MAPS ''' it was i = 100 to max_maps If GetTotalMapPlayers(i) > 0 Then CanWarp = False Else CanWarp = True End If If CanWarp Then ' Save Previous Coords Player(Index).PrevMap = GetPlayerMap(Index) Player(Index).PrevX = GetPlayerX(Index) Player(Index).PrevY = GetPlayerY(Index) ' Instance New Map Call InstanceMap(.Data1, i, Index) ' Warp Player(s) If TempPlayer(Index).inParty Then Call PartyWarp(Index, i, .Data2, .Data3, True) Else Call PlayerWarp(Index, i, .Data2, .Data3) End If Exit For End If Next i End If Moved = YES End If End With ``` but still pulls map numbers: Filename=map1.dat and Filename2= map0.dat although im on map 6 upon further testing, if you put this instead``` Call InstanceMap(.Data1, MapNum, Index) ``` it pulls the correct map number instead of the player index number, but still fails to copy, so i changed ``` ' Save new copy filename = App.path & "\data\maps\map" & mapCopyNum & ".dat" Filename2 = App.path & "\data\maps\map" & mapCopyNum & ".dat" ``` for testing purposes, i have the map "6" but still same runtime error
  21. would love to get this working, on a side note that might be stopping this from working; one of the filenames is 1 and the other is 0, even though im on map 6? And you dont have a map0 its starts on 1 and ends on 99.
  22. Runtime error 53 file not found: FileCopy Filename2, filename
  23. This is awesome possum possum possum! Playing right now; a button to force the next wave to come would be nice ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png) not sure why but my print screen did not work; i just got a run time error 9 i think, i was owning with all my towers on there respective max levels and it randomly crashed. will try and replicate it later as doing school run soon. Is there an "end" to this game? The monters didnt get anywhere but i was on like level 30 ish? I seemed to end up with thousands of coins and nothing to spend it on ![:(](http://www.touchofdeathforums.com/community/public/style_emoticons//sad.png)
×
×
  • Create New...