Search Results
Hey guys, It's been a while since I've been busy with sa-mp but lately my interest is sparkling again to start working on a server, only things is that I don't want to start from scratch but rather j...
120
Quote: Originally Posted by OleKristian95 Problem almost solved! What I want now is to make admins NOT see the (Aka: ) if the players doesnt have any Aka. If anyone can help that would be...
322
Hm, still not working for me seems like I have a bug somewhere else. EDIT: Nvm, seems like a filterscript was causing the trouble. Ty anyways .
87
Hello guys I'm trying to put the id of the players next to their name in the chat but all I'm getting is an empty line in the chatlog. Any idea what I'm doing wrong here? Код: public OnPlayerTex...
87
Quote: Originally Posted by <Weponz> why doesnt it have a opening brace b4 the 1st return? theres nothing there? Its has one. behind the if statement
245
This should have all the info you need. https://sampwiki.blast.hk/wiki/Category:..._Documentation
245
this is how I would do it. Код: if(strcmp("/extract", cmdtext, true, 5) == 0) { if(PlayerInfo[playerid][FuelAmount] < 1000){ //player has less th...
245
Код: format(Query, sizeof(Query), "INSERT INTO `vehicles` (model, x, y, z, o, color1, color2, respawndelay, ownable, ownerid, factionid, jobid, fuel, tag) VALUES('%d', '%f', '%f', '%f', '%f', '%d'...
123
I think you should get the XY position infront of the player. you can find a script for it here somewhere
87
launch sa-mp in debug mode and launch it as administrator(on vista and windows 7) when ingame use /save to save your position. Then there should be a file name savedpositions.txt in the same directory...
296
take a look at the LVDM gamemode that comes with the server pack it uses random spawning
146
try using the search function, u'll find alot of topics about random spawning
146
Quote: Originally Posted by Tigerbeast11 Код: enum PlayerSpawnInfo { Float:PlayerX, //Line 345 Float:PlayerY, Float:PlayerZ, Float:PlayerAngle } new Float:gRandomSpawns[][Player...
146
Код: public OnPlayerPickUpPickup(playerid, pickupid) { if(pickupid==Cash){ GivePlayerMoney(playerid,5); SendClientMessage(playerid, COLOR_GREEN,"You Found 5 Bucks"); } if(pickupid==Cas...
245
well this is what i have now http://pastebin.com/f78a321e5 its the most stable i am able to script i think EDIT: typo
219
Quote: Originally Posted by SilentHuntR Why not use, OnPlayerStateChange, if newstate==PLAYER_STATE_ON_FOOT ? so there's no timers wont there always be a timer needed to put the player ...
219
ty kaisersouse its working now ^^
219
hi guys, im trying to script an anit-bike fall off. but i have a problem my script seems te run perfect when only 1 player is on the server but when 2 players are on the last joined player is able to ...
219
the player is moving up because of this SetPlayerPos(giveplayerid,X1,Y1,Z1+3); why set his z position +3?? just get the position behind the dragger and put the dragged personne on that location?
90